feat(hardware): create standalone profile for GOAT O1200 LiDAR Pro (2i0fns) with edge trimmer lifespan#1625
Open
monsivar wants to merge 3 commits into
Open
feat(hardware): create standalone profile for GOAT O1200 LiDAR Pro (2i0fns) with edge trimmer lifespan#1625monsivar wants to merge 3 commits into
monsivar wants to merge 3 commits into
Conversation
Added `WEED_ROPE` ("weedRope") and `TRIMMER_BRUSH` ("trimmerBrush")
feat(events): add weedRope and trimmerBrush to LifeSpan enum
edenhaus
requested changes
Jun 3, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Hi!
Disclaimer: I am not a developer by trade, but I am trying to contribute to the project as best as I can based on my testing and ownership of a GOAT O1200 LiDAR Pro machine.
I have been monitoring the MQTT traffic from my GOAT O1200 (class
2i0fns) and noticed it tracks the lifespan of its specific edge-trimming hardware.Previously,
2i0fns.pysimply pointed to the5xu9h3.py(GOAT G1) profile. However, since the standard G1 lacks the edge trimmer module, adding these sensors to the shared profile would likely cause errors or "Unknown" states for G1 users.To safely implement this without breaking backwards compatibility, I have:
WEED_ROPE("weedRope") andTRIMMER_BRUSH("trimmerBrush") to theLifeSpanStrEnum indeebot_client/events/__init__.py.2i0fns.pyfrom5xu9h3.pyand converted it into a standaloneStaticDeviceInfocapability profile.2i0fnsprofile.Raw payload reference from
getLifeSpanfor validation:{"type":"weedRope","left":289,"total":340}{"type":"trimmerBrush","left":56,"total":60}Let me know if I made any rookie mistakes with the project structure or if you need any adjustments to the code!